home *** CD-ROM | disk | FTP | other *** search
/ Windows News 2005 November / WNnov2005.iso / Windows / Equipement / hMailServer / hMailServer-4.1-Build-136.exe / {app} / PHPWebAdmin / theme / default / distributionlists.tpl < prev    next >
Text File  |  2005-04-05  |  2KB  |  37 lines

  1. <br/>
  2. <h1>{translate}distribution_lists{/translate}  -      {$domain->Name}</h1>
  3.  
  4.  
  5. <table border="0" cellpadding="5" cellspacing="0" width="100%">
  6.     <tr class="listheader">
  7.         <td class="listheader">{translate}address{/translate}</td>
  8.         <td class="listheader">{translate}active{/translate}</td>
  9.         <td class="listheader">{translate}recipients{/translate}</td>
  10.         <td class="listheader" align="right">{translate}functions{/translate}</td>
  11.     </tr>
  12.     {section name=accounts loop=$records}
  13.     {if $smarty.section.accounts.index is even}
  14.     <tr class="listevenrow">
  15.     {else}
  16.     <tr class="listoddrow">
  17.     {/if}
  18.     <td><a href="index.php?page=distributionlists_edit&DistributionlistID={$records[accounts]->ID}&DomainID={$domain->ID}">{$records[accounts]->Address}</a></td>
  19.     <td>{if $records[accounts]->Active}{translate}yes{/translate}{else}{translate}no{/translate}{/if}</td>
  20.     <td>{$records_info[$smarty.section.accounts.index].dlist_cnt}</td>
  21.  
  22.     <td align="right">
  23.     <a href="index.php?page=distributionlists_recipients&DistributionlistID={$records[accounts]->ID}&DomainID={$domain->ID}">{translate}recipients{/translate}</a> | 
  24.     <a href="index.php?page=distributionlists_edit&DistributionlistID={$records[accounts]->ID}&DomainID={$domain->ID}">{translate}edit{/translate}</a> | 
  25.     <a href="index.php?page=distributionlists_delete&DistributionlistID={$records[accounts]->ID}&DomainID={$domain->ID}">{translate}delete{/translate}</a>
  26.  
  27.     </td>
  28.     </tr>
  29.     {/section}
  30.     <tr>
  31.         <td colspan="4" class="footerline"> </td>
  32.     </tr>
  33.     <tr>
  34.         <td colspan="4" align="right"><a href="index.php?page=distributionlists_add&function=add&DomainID={$domain->ID}">{translate}add_distribution_list{/translate}</a></td>
  35.     </tr>
  36. </table>
  37.